ANativeActivity_createFunc

This is the function that must be in the native code to instantiate the application's native activity. It is called with the activity instance (see above); if the code is being instantiated from a previously saved instance, the savedState will be non-NULL and point to the saved data. You must make any copy of this data you need -- it will be released after you return from this function.

version(Android)
extern (C)
alias ANativeActivity_createFunc = void function

Meta